home *** CD-ROM | disk | FTP | other *** search
- unit Errorfrm;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, Dialogs, StdCtrls, Buttons, TabNotBk;
-
- type
- TErrorForm = class(TForm)
- MainTabs: TTabbedNotebook;
- InfoMemo: TMemo;
- UserMemo: TMemo;
- Label1: TLabel;
- ErrMsgLabel: TLabel;
- OKBtn: TBitBtn;
- ErrClassLabel: TLabel;
- procedure FormShow(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- ErrorForm: TErrorForm;
-
- implementation
-
- {$R *.DFM}
-
- procedure TErrorForm.FormShow(Sender: TObject);
- begin
- MainTabs.PageIndex := 0;
- UserMemo.Clear;
- UserMemo.SetFocus;
- end;
-
- end.
-